home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 26 (Anniversary Edition)
/
Volume 26 [Anniversary Edition] - JOGO DISK .iso
/
DEPOSITO
/
REmovido
/
Esportes
/
3on1.swf
/
scripts
/
DefineSprite_184
/
frame_1
/
DoAction.as
< prev
Wrap
Text File
|
2006-06-13
|
632b
|
28 lines
function sondaPauzy()
{
obj = new Object();
obj.onKeyDown = function()
{
var klw = Key.getCode();
if(klw == 80 && gra && komunikat._currentframe == 1)
{
gra = false;
zegar.pauza(true);
komunikat.gotoAndStop(5);
}
else if(klw == 80 && !gra && komunikat._currentframe == 5)
{
gra = true;
zegar.pauza(false);
komunikat.gotoAndStop(1);
}
};
Key.addListener(obj);
}
domenu.onRelease = function()
{
usunWszystko();
clearInterval(zegar.id);
_parent.gotoAndPlay(_parent._currentframe - 1);
};